home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 1997 May
/
PC Plus Super CD Issue 127 (May 1997).iso
/
delphi1
/
lesson4
/
todolist
/
savedlg.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1996-01-11
|
378 b
|
27 lines
unit Savedlg;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, StdCtrls;
type
TSaveMsg = class(TForm)
FileNameLabel: TLabel;
Label1: TLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
SaveMsg: TSaveMsg;
implementation
{$R *.DFM}
end.